/*Esto es un comentario en CSS*/
h4 {
	text-align: center;
	animation: parpadeoColores 1.5s linear infinite;
	font-size: 30px;
	}
@keyframes parpadeoColores {
	0% { color: red; opacity: 1}
	50% { color: blue; opacity: 1}
	100% { color: red; opacity: 1}
	}
form {
	text-align: center;
	}
div {
	color: blue;
	font-size: 50px;
	text-align: center;
	}
.modA {
	text-align: center;
	font-size: 15px;
	}
p {
	font-size: 20px;
	}
h1 {
	text-align: center;
	color: #4774AD;
	background-color: #91ACCC;
	border: 5px solid #000;
	border-color: #36507A;
	border-top-right-radius: 50px;
	border-top-left-radius: 50px;
	border-bottom-right-radius: 50px;
	border-bottom-left-radius: 50px;
	font-family: "DM Serif Text", serif;
	font-size: 40px;
	}
h2 {
	color: #91ACCC;
	text-align: center;
	font-family: "DM Serif Text", serif;
	font-size: 30px;
	}